home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Easy 2010 May
/
Mac Life Ubuntu.iso
/
casper
/
filesystem.squashfs
/
usr
/
lib
/
pm-utils
/
sleep.d
/
96laptop-mode
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2009-03-30
|
408 b
|
17 lines
#!/bin/sh
case "$1" in
thaw|resume)
LAPTOP_MODE=/usr/sbin/laptop_mode
if [ -x $LAPTOP_MODE ]; then
[ -f /etc/default/laptop-mode ] && . /etc/default/laptop-mode
[ -f /etc/default/acpi-support ] && . /etc/default/acpi-support
if [ x$ENABLE_LAPTOP_MODE = xtrue ]; then
$LAPTOP_MODE auto
fi
fi
;;
*)
;;
esac